☁️ Loving our new documentation website? Provide feedback in the CloudCannon Community! ✨

glob

Table of contents

Description:

This key defines the glob pattern(s) targeting a path to one or more files.

Appears in:
└── file_config
    └── [*]
        └── glob
Types:
Globstring#
Examples:

In this example, we have configured a file config to target the data/tabs.yml file with object input configuration.

Copied to clipboard
file_config:
  - glob: data/tabs.yml
    _inputs:
      $:
        type: object
        options:
          subtype: tabbed
{
  "file_config": [
    {
      "glob": "data/tabs.yml",
      "_inputs": {
        "$": {
          "type": "object",
          "options": {
            "subtype": "tabbed"
          }
        }
      }
    }
  ]
}
Open in a new tab